home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / • Other Platforms / PCCTS 1.31 / non-MPW / makefile next >
Encoding:
Makefile  |  1995-03-10  |  983 b   |  36 lines  |  [TEXT/MPS ]

  1. #
  2. # Main makefile for PCCTS 1.31
  3. #
  4. # Terence Parr
  5. # Purdue University
  6. # March 1994
  7. #
  8. # this can be set to /user/local/bin etc...
  9. BINDIR=bin
  10. #CC=cc
  11.  
  12. .SILENT:
  13.  
  14. pccts:
  15.     echo
  16.     echo "               Welcome to PCCTS 1.31 installation"
  17.     echo "                   Released January 1, 1995"
  18.     echo
  19.     echo "                           Featuring"
  20.     echo "         ANTLR  -- ANother Tool for Language Recognition"
  21.     echo "         DLG    -- DFA-based Lexical Analyzer Generator"
  22.     echo "         C      -- ANSI grammar with symbol table management"
  23.     echo "         Pascal -- ISO Pascal with symbol table management"
  24.     echo "         now including sample grammar files for C++ mode"
  25.     echo
  26. #
  27.     echo Making executables...
  28.     (cd antlr; make -s)
  29.     echo antlr executable now in $(BINDIR)
  30.     (cd dlg; make -s)
  31.     echo dlg executable now in $(BINDIR)
  32.     (cd support/genmk; make -s; mv genmk ../../$(BINDIR))
  33.     echo genmk executable now in $(BINDIR)
  34.     echo
  35.     echo "       PCCTS 1.31 installation complete (have a nice day)"
  36.